home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue49 / Factory / FactoryPattern.dpr < prev    next >
Encoding:
Text File  |  1999-06-09  |  780 b   |  25 lines

  1. program FactoryPattern;
  2.  
  3. uses
  4.   Forms,
  5.   FMain in 'FMain.pas' {FormReportSelection},
  6.   FReportAbstract in 'FReportAbstract.pas' {FormReportAbstract},
  7.   FReportAddressLabel in 'FReportAddressLabel.pas' {FormReportMailingLabels},
  8.   FReportListing in 'FReportListing.pas' {FormReportListing},
  9.   FReportDataExport in 'FReportDataExport.pas' {FormReportDataExport},
  10.   FactoryReport in 'FactoryReport.pas',
  11.   Constants in 'Constants.pas',
  12.   FactoryAbstract in 'FactoryAbstract.pas',
  13.   FactoryConcreteReport in 'FactoryConcreteReport.pas',
  14.   Animals in 'Animals.pas',
  15.   FactoryConcreteAnimal in 'FactoryConcreteAnimal.pas';
  16.  
  17. {$R *.RES}
  18.  
  19. begin
  20.   Application.Initialize;
  21.   Application.CreateForm(TFormReportSelection, FormReportSelection);
  22.   Application.Run;
  23. end.
  24.  
  25.